home *** CD-ROM | disk | FTP | other *** search
/ Dream Season 1996 - Flor…a's National Championship / Florida's National Championship on CD-ROM - Dream Season 1996.iso / mac / Dream Season '96 / Dream Season '96.DXR / 00001_global scripts.ls next >
Encoding:
Text File  |  1997-03-19  |  4.8 KB  |  210 lines

  1. on mouseDown
  2. end
  3.  
  4. on mouseUp
  5. end
  6.  
  7. on LPad s, n
  8.   set n2 to the number of chars in s
  9.   repeat with i = n2 + 1 to n
  10.     set s to s & " "
  11.   end repeat
  12.   return s
  13. end
  14.  
  15. on RPad s, n
  16.   set n2 to the number of chars in s
  17.   repeat with i = n2 + 1 to n
  18.     set s to " " & s
  19.   end repeat
  20.   return s
  21. end
  22.  
  23. on MakePath s
  24.   set s to "DATA:" & s
  25.   set c to ":"
  26.   if the machineType = 256 then
  27.     set c to "\"
  28.     set n to offset(":", s)
  29.     repeat while n > 0
  30.       put "\" into char n of s
  31.       set n to offset(":", s)
  32.     end repeat
  33.   end if
  34.   return the moviePath & s
  35. end
  36.  
  37. on startMovie
  38.   global gTEXTSPRITE, gSTATSSPRITE, gROSTERSPRITE, gRECORDSSPRITE, gGAMESSPRITE, gPICTSPRITE, gVIDEOSPRITE, gAUDIOSPRITE, gPREVIEWSPRITE, gPREVIEWSPRITELAST, gMEDIAICONCAPTIONSPRITE, gMEDIACAPTIONSPRITE, gWORLDSTARTDATE, gWORLDENDDATE, gTEAMSTARTDATE, gTEAMENDDATE, gSLIDERSPRITE, gSLIDERTHUMBSPRITE, gSLIDERTHUMBTEXTSPRITE, gSLIDERTHUMBTEXTOFFSET
  39.   CheckMachine()
  40.   set the preLoadEventAbort to 1
  41.   initRearWindow()
  42.   set gWORLDSTARTDATE to 1909
  43.   set gWORLDENDDATE to 1996
  44.   set gTEAMSTARTDATE to 1909
  45.   set gTEAMENDDATE to 1996
  46.   set gSLIDERTHUMBTEXTOFFSET to -32
  47.   set gPREVIEWSPRITE to 3
  48.   set gPREVIEWSPRITELAST to 20
  49.   set gSLIDERSPRITE to 27
  50.   set gSLIDERTHUMBSPRITE to 28
  51.   set gSLIDERTHUMBTEXTSPRITE to 29
  52.   set gVIDEOSPRITE to 30
  53.   set gPICTSPRITE to 32
  54.   set gAUDIOSPRITE to 34
  55.   set gTEXTSPRITE to 36
  56.   set gSTATSSPRITE to 38
  57.   set gROSTERSPRITE to 40
  58.   set gRECORDSSPRITE to 42
  59.   set gGAMESSPRITE to 44
  60.   set gMEDIACAPTIONSPRITE to 47
  61.   set gMEDIAICONCAPTIONSPRITE to 48
  62.   repeat with i = 1 to 48
  63.     set the visible of sprite i to 1
  64.   end repeat
  65.   ClearScreens()
  66.   preLoadCast(the number of cast "goto menu sound")
  67. end
  68.  
  69. on ClearScreens
  70. end
  71.  
  72. on stopMovie
  73.   global gPREVIEWSPRITE, gPREVIEWSPRITELAST, gMEDIACAPTIONSPRITE, gMEDIAICONCAPTIONSPRITE
  74.   releaseRearWindow()
  75.   set the fileName of cast the number of cast "MediaPicture" to "NULL.PIC"
  76.   set the fileName of cast the number of cast "MediaVideo" to "NULL.MOV"
  77.   set the fileName of cast the number of cast "MediaAudio" to "NULL.SND"
  78.   set the fileName of cast the number of cast "ScoreBoardVideo" to "NULLMAIN.MOV"
  79.   set n to the number of cast "Preview1"
  80.   repeat with i = n to n + (gPREVIEWSPRITELAST - gPREVIEWSPRITE + 1)
  81.     set the fileName of cast i to "NULL.PIC"
  82.   end repeat
  83.   repeat with i = gPREVIEWSPRITE to gPREVIEWSPRITELAST
  84.     set the visible of sprite i to 1
  85.   end repeat
  86.   set the text of cast "MediaCaption" to "Media Caption"
  87.   set the text of cast "MediaIconCaption" to "Media Icon Caption"
  88.   set the visible of sprite gMEDIACAPTIONSPRITE to 1
  89.   set the visible of sprite gMEDIAICONCAPTIONSPRITE to 1
  90. end
  91.  
  92. on CheckMachine
  93.   set OK to 1
  94.   if the quickTimePresent = 0 then
  95.     set OK to 0
  96.   end if
  97.   if OK = 1 then
  98.     if the machineType = 256 then
  99.     else
  100.       openXLib("QTVersion.XFCN")
  101.       if QTVersion() < 2.10000000000000009 then
  102.         set OK to 0
  103.       end if
  104.       closeXLib("QTVersion.XFCN")
  105.     end if
  106.   end if
  107.   if OK = 0 then
  108.     if the machineType = 256 then
  109.       open("QTINSTAL.EXE")
  110.       quit()
  111.     else
  112.     end if
  113.   end if
  114. end
  115.  
  116. on initRearWindow
  117.   global rwObj
  118.   if the machineType = 256 then
  119.     exit
  120.   end if
  121.   if factory("RearWindow") = 0 then
  122.     openXLib("REARWIN.XOB")
  123.   end if
  124.   if objectp(rwObj) then
  125.     rwObj(mdispose)
  126.   end if
  127.   makeRearWindowObjIfNeeded()
  128.   rwObj(mPatToWindow, -5)
  129. end
  130.  
  131. on releaseRearWindow
  132.   global rwObj
  133.   if the machineType = 256 then
  134.     exit
  135.   end if
  136.   if objectp(rwObj) then
  137.     rwObj(mdispose)
  138.   end if
  139.   closeXLib()
  140. end
  141.  
  142. on makeRearWindowObjIfNeeded
  143.   global rwObj
  144.   if not objectp(rwObj) then
  145.     set rwObj to RearWindow(mnew, "M")
  146.     if value(rwObj) < 0 then
  147.       exit
  148.     end if
  149.     if the freeBlock < rwObj(mGetMemoryNeeded) then
  150.       if objectp(rwObj) then
  151.         rwObj(mdispose)
  152.         set rwObj to RearWindow(mnew, "S")
  153.       end if
  154.       if value(rwObj) < 0 then
  155.         exit
  156.       end if
  157.     end if
  158.   end if
  159. end
  160.  
  161. on keyDown
  162.   if (the key = RETURN) or (the key = ENTER) then
  163.   else
  164.     if (the key >= "0") and (the key <= "9") then
  165.     else
  166.       if (the key >= numToChar(28)) and (the key <= numToChar(31)) then
  167.         ArrowKey()
  168.       end if
  169.     end if
  170.     if the key = 0 then
  171.       set the soundLevel to 0
  172.     end if
  173.     if the key = 1 then
  174.       set the soundLevel to 1
  175.     end if
  176.     if the key = 2 then
  177.       set the soundLevel to 2
  178.     end if
  179.     if the key = 3 then
  180.       set the soundLevel to 3
  181.     end if
  182.     if the key = 4 then
  183.       set the soundLevel to 4
  184.     end if
  185.     if the key = 5 then
  186.       set the soundLevel to 5
  187.     end if
  188.     if the key = 6 then
  189.       set the soundLevel to 6
  190.     end if
  191.     if the key = 7 then
  192.       set the soundLevel to 7
  193.     end if
  194.   end if
  195. end
  196.  
  197. on ArrowKey
  198.   if the key = numToChar(28) then
  199.   else
  200.     if the key = numToChar(29) then
  201.     else
  202.       if the key = numToChar(30) then
  203.       else
  204.         if the key = numToChar(31) then
  205.         end if
  206.       end if
  207.     end if
  208.   end if
  209. end
  210.